home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / H / STDIO.H < prev    next >
C/C++ Source or Header  |  1997-07-08  |  1KB  |  47 lines

  1. #include <stddef.h>
  2.  
  3. #ifndef __STDIO_H__
  4. #define __STDIO_H__
  5.  
  6. #ifdef __cplusplus
  7.   extern "C" {
  8. #endif
  9.  
  10. extern char * gets(char *s);
  11. extern void puts(char *s);
  12.  
  13. extern void print(char * s1);
  14. extern void fprint(byte dev,char * s1);
  15. extern void printxy(word x,word y,char * s1);
  16. extern void printf(char *,...);
  17. extern void vprintf(char * str1,void * args);
  18. extern void fprintf(byte dev,char * str1,...);
  19. extern void vfprintf(byte dev,char * str1,void * args);
  20.  
  21. extern void sprintf(char * d,char * str1,...);
  22. extern void vsprintf(char * d,char * str1,void * args);
  23.  
  24. extern void scanf(char * format,...);
  25. extern void sscanf(char * buf,char * format,...);
  26.  
  27. extern dword _printf_siz(char * str,...);
  28. extern dword _vprintf_siz(char * str,dword args);
  29.  
  30. extern sword unlink(char * strg);
  31.  
  32. extern word errno;    //error code returned by DOS
  33.  
  34. #ifdef __cplusplus
  35.   }
  36. #endif
  37.  
  38. #define EOF (-1)
  39.  
  40. #define stdin 0
  41. #define stdout 1
  42. #define stderr 2
  43. #define stdaux 3
  44. #define stdprn 4
  45.  
  46. #endif
  47.